home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / C / Applications / MacGzip 1.0 / source / More Resources / NotPPC ƒ / NotPPC ReadMe next >
Text File  |  1994-04-25  |  1KB  |  34 lines

  1. #-----------------------------------------------------------------------#
  2. #                                                                        #
  3. #                        NotPPC - Sample Application                        #
  4. #                                                                        #
  5. #                        ©1993, 1994 Apple Computer, Inc.                #
  6. #                                                                        #
  7. #-----------------------------------------------------------------------#
  8.  
  9. NotPPC is a tiny 68K application that you can combine with your Power
  10. Macintosh application to avoid the annoying "System Error -192: Resource
  11. Not Found" that occurs when you try to run a Power Macintosh application
  12. on a 68K Macintosh.
  13.  
  14. When run on a 68K Macintosh, NotPPC puts up a simple alert saying that the
  15. application program is designed for Power Macintosh computers and is not
  16. compatible with this 68K Macintosh.
  17.  
  18. NotPPC is created with a single segment named 'PPCOnly'.  You might be able
  19. to use 'PPCOnly' to differentiate between a Power Macintosh only application
  20. versus a FAT application (such as from an installer).
  21.  
  22.  
  23. To include this capability in your Power Macintosh application:
  24.  
  25. 1)    Build the NotPPC App using the NotPPC.make makefile.    
  26.  
  27. 2)    Add the following line to your Power Macintosh application's resource
  28.     description (.r) file...
  29.  
  30.     Include "NotPPC";
  31.  
  32.     This copies the resources from NotPPC to your Power Macintosh
  33.     Application, resulting in a "Fat" application.  Note that there are
  34.     other (equivalent) ways of creating "Fat" applications.